home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Tools 5
/
Amiga Tools 5.iso
/
tools
/
developer-tools
/
guis
/
gadutil
/
examples
/
bettertest-c
/
led.asm
< prev
next >
Wrap
Assembly Source File
|
1996-07-16
|
229b
|
18 lines
xdef _LightState
xdef _ToggleLED
section code
_LightState:
tst.w 6(sp) ; Check state
beq.s setoff
bclr #1,$bfe001
rts
setoff:
bset #1,$bfe001
rts
_ToggleLED:
bchg #1,$bfe001
rts
end